d96a5dbcba224f53c82f13422ac2873828499758,VUE2/src/tufts/vue/MapDropTarget.java,MapDropTarget,dropToMapLocation,#number#number#,663
Before Change
private Point2D dropToMapLocation(int x, int y)
{
return viewer.screenToMapPoint(x, y);
/*
java.awt.Insets mapInsets = viewer.getInsets();
java.awt.Point mapLocation = viewer.getLocation();
After Change
private Point2D dropToMapLocation(int x, int y)
{
Point2D p = viewer.screenToMapPoint(x, y);
//if (DEBUG.DND) System.out.println("drop location " + x + "," + y + " mapLoc=" + p);
return p;
/*
java.awt.Insets mapInsets = viewer.getInsets();
java.awt.Point mapLocation = viewer.getLocation();